/* Hot Offers Section */
.hot-offers-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: #777;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Timer Styles */
.offer-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.timer-box {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 80px;
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #e63946;
}

.timer-text {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

/* Offer Grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.offer-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e63946;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.offer-badge.BOGO {
    background: #2a9d8f;
}

.offer-img {
    height: 220px;
    overflow: hidden;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-img img {
    transform: scale(1.05);
}

.offer-details {
    padding: 20px;
}

.offer-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.price-box {
    margin: 15px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 10px;
}

.new-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e63946;
}

.offer-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.offer-btn {
    width: 100%;
    padding: 12px;
    background: #333;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.offer-btn:hover {
    background: #e63946;
}

.view-all-btn {
    text-align: center;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e63946;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .offer-timer {
        gap: 10px;
    }
    
    .timer-box {
        padding: 10px 15px;
        min-width: 70px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
}